home *** CD-ROM | disk | FTP | other *** search
/ Aminet 20 / Aminet 20 (1997)(GTI - Schatztruhe)[!][Aug 1997].iso / Aminet / dev / cross / AmigaTI85Prog.lha / MakeAsm < prev    next >
AmigaDOS Script File  |  1997-06-13  |  370b  |  17 lines

  1. .key file
  2. .bra {
  3. .ket }
  4.  
  5. ;Makeasm - An AmigaDOS shell script to call asz80, hex-bin and string85 
  6. ;to generate a .85s file from a .asm file.  The variable name is the same
  7. ;as the .asm file with the .asm removed
  8.  
  9. if exists {file}.asm
  10.     asz80 -h{file}.hex -l{file}.lst {file}.asm
  11.     hex-bin <{file}.hex >{file}.o
  12.     string85 {file}.o {file}
  13. else
  14.     echo "File not found"
  15. endif
  16.  
  17.